-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modularize Aws::Record #149
Conversation
mullermp
commented
Oct 24, 2024
- Checks for Aws::Record before adding things
- Fixes the tests (were previously not running)
- General code cleanup
- README and usage improvements
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice - overall looks good, just a few questions on areas I don't quite understand.
|
||
module AwsRecord | ||
module Generators | ||
class ModelGenerator < Base | ||
# Generates an Aws::Record model and table configuration. | ||
class ModelGenerator < Rails::Generators::NamedBase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I'm still missing something - where does this get required from?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's loaded automatically because of its subclass. Just like the session store generators.